home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 15 / macformat_15.iso / C de cerca / Codewarrior Lite / MacOS Support / Headers / ANSI Headers / iostream < prev    next >
Text File  |  1995-12-29  |  695b  |  40 lines

  1. // iostream standard header
  2. #ifndef _IOSTREAM_
  3. #define _IOSTREAM_
  4. #include <fstream>
  5.  
  6. #if __MWERKS__
  7. #pragma options align=mac68k
  8.  
  9. #if __CFM68K__ && __USING_IMPORTED_ANSI__
  10. #pragma import on
  11. #endif
  12. #endif
  13.  
  14.         // standard stream declarations
  15. extern istream cin;
  16. extern ostream cout;
  17. extern ostream cerr;
  18. extern ostream clog;
  19. static ios::Init _Ios_init;
  20.  
  21. #if __MWERKS__
  22. #if __CFM68K__ && __USING_IMPORTED_ANSI__
  23. #pragma import reset
  24. #endif
  25.  
  26. #pragma options align=reset
  27. #endif
  28.  
  29. #endif
  30.  
  31. /*
  32.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  33.  * Consult your license regarding permissions and restrictions.
  34.  */
  35.  
  36. /* Change log:
  37.  *94June04 PlumHall baseline
  38.  *94Oct07 Inserted MW changes.
  39.  */
  40.